If...Then...Else Statement (Visual Basic) - MSDN - Microsoft Conditionally executes a group of statements, depending on the value of an expression.
If Operator (Visual Basic) - MSDN - Microsoft If Operator (Visual Basic). Visual Studio 2013 ... If the value of the Boolean expression is False, argument3 is evaluated and its value is returned, but argument2 ...
Or Operator (Visual Basic) - MSDN - Microsoft Performs a logical disjunction on two Boolean expressions, or a bitwise ... The OrElse Operator (Visual Basic) performs short-circuiting, which means that if ...
Boolean Expressions (Visual Basic) - MSDN - Microsoft If both expressions are True, then the overall expression evaluates to True. If either ... For more information, see Operator Precedence in Visual Basic.
Select...Case Statement (Visual Basic) - MSDN - Microsoft The Case Else statement is used to introduce the elsestatements to run if no match ... Visual Basic evaluates the clauses from left to right, and if one produces a ...
Statements in Visual Basic - MSDN - Microsoft When the code containing a declaration statement runs, Visual Basic reserves the memory required for the declared element. If the element holds a value, Visual ...
And Operator (Visual Basic) - MSDN - Microsoft The AndAlso Operator (Visual Basic) performs short-circuiting, which means that if ... If the operands consist of one Boolean expression and one numeric ...
Visual Basic If Statement - thecodingguys 8 Jun 2014 ... In this tutorial you will learn how to use the Visual Basic if else statement, and also learn about nested if else, and if else operators.
Conditional Statements in Visual Basic - Bernstein + Sons The basic structure of a conditional statement block in Visual Basic is: If ( expression ) Then. Statements. End If. Or. If ( expression ) Then. Statements. Else .